home *** CD-ROM | disk | FTP | other *** search
/ The Datafile PD-CD 1 Issue 2 / PDCD-1 - Issue 02.iso / _utilities / utilities / 003 / _gs / !GS / c / GSCHAR < prev    next >
Text File  |  1991-10-26  |  18KB  |  613 lines

  1. /* Copyright (C) 1989, 1990, 1991 Aladdin Enterprises.  All rights reserved.
  2.    Distributed by Free Software Foundation, Inc.
  3.  
  4. This file is part of Ghostscript.
  5.  
  6. Ghostscript is distributed in the hope that it will be useful, but
  7. WITHOUT ANY WARRANTY.  No author or distributor accepts responsibility
  8. to anyone for the consequences of using it or for whether it serves any
  9. particular purpose or works at all, unless he says so in writing.  Refer
  10. to the Ghostscript General Public License for full details.
  11.  
  12. Everyone is granted permission to copy, modify and redistribute
  13. Ghostscript, but only under the conditions described in the Ghostscript
  14. General Public License.  A copy of this license is supposed to have been
  15. given to you along with Ghostscript so you can know your rights and
  16. responsibilities.  It should be in a file named COPYING.  Among other
  17. things, the copyright notice and this notice must be preserved on all
  18. copies.  */
  19.  
  20. /* gschar.c */
  21. /* Character writing operators for Ghostscript library */
  22. #include "gx.h"
  23. #include "memory_.h"
  24. #include "string_.h"
  25. #include "gserrors.h"
  26. #include "gxfixed.h"            /* ditto */
  27. #include "gxarith.h"
  28. #include "gxmatrix.h"
  29. #include "gzstate.h"            /* must precede gzdevice */
  30. #include "gzdevice.h"            /* must precede gxchar */
  31. #include "gxdevmem.h"
  32. #include "gxchar.h"
  33. #include "gxfont.h"
  34. #include "gspath.h"
  35. #include "gzpath.h"
  36. #include "gzcolor.h"
  37.  
  38. /* Exported size of enumerator */
  39. const uint gs_show_enum_sizeof = sizeof(gs_show_enum);
  40.  
  41. /* Forward declarations */
  42. private int continue_show(P1(gs_show_enum *));
  43. private int continue_show_update(P1(gs_show_enum *));
  44. private int show_setup(P3(gs_show_enum *, gs_state *, char *));
  45. private int stringwidth_setup(P3(gs_show_enum *, gs_state *, char *));
  46.  
  47. /* Print the ctm if debugging */
  48. #define print_ctm(s,pgs)\
  49.   dprintf7("[p]%sctm=[%g %g %g %g %g %g]\n", s,\
  50.        pgs->ctm.xx, pgs->ctm.xy, pgs->ctm.yx, pgs->ctm.yy,\
  51.        pgs->ctm.tx, pgs->ctm.ty)
  52.  
  53. /* ------ String writing operators ------ */
  54.  
  55. /* Setup macros for show operators */
  56. #define setup_show()\
  57.   penum->size = strlen(str)
  58. #define setup_show_n()\
  59.   penum->size = size
  60. #define setup_a()\
  61.   penum->add = 1, penum->ax = ax, penum->ay = ay,\
  62.   penum->slow_show = 1
  63. #define setup_width()\
  64.   penum->chr = chr, penum->cx = cx, penum->cy = cy,\
  65.   penum->slow_show = 1
  66. #define no_chr 0x100
  67.  
  68. /* show[_n] */
  69. int
  70. gs_show_init(register gs_show_enum *penum,
  71.   gs_state *pgs, char *str)
  72. {    setup_show();
  73.     penum->slow_show = 0;
  74.     return show_setup(penum, pgs, str);
  75. }
  76. int
  77. gs_show_n_init(register gs_show_enum *penum,
  78.   gs_state *pgs, char *str, uint size)
  79. {    setup_show_n();
  80.     penum->slow_show = 0;
  81.     return show_setup(penum, pgs, str);
  82. }
  83.  
  84. /* ashow[_n] */
  85. int
  86. gs_ashow_init(register gs_show_enum *penum,
  87.   gs_state *pgs, floatp ax, floatp ay, char *str)
  88. {    int code;
  89.     setup_show();
  90.     code = show_setup(penum, pgs, str);
  91.     setup_a();
  92.     return code;
  93. }
  94. int
  95. gs_ashow_n_init(register gs_show_enum *penum,
  96.   gs_state *pgs, floatp ax, floatp ay, char *str, uint size)
  97. {    int code;
  98.     setup_show_n();
  99.     code = show_setup(penum, pgs, str);
  100.     setup_a();
  101.     return code;
  102. }
  103.  
  104. /* widthshow[_n] */
  105. int
  106. gs_widthshow_init(register gs_show_enum *penum,
  107.   gs_state *pgs, floatp cx, floatp cy, char chr, char *str)
  108. {    int code;
  109.     setup_show();
  110.     code = show_setup(penum, pgs, str);
  111.     setup_width();
  112.     return code;
  113. }
  114. int
  115. gs_widthshow_n_init(register gs_show_enum *penum,
  116.   gs_state *pgs, floatp cx, floatp cy, char chr, char *str, uint size)
  117. {    int code;
  118.     setup_show_n();
  119.     code = show_setup(penum, pgs, str);
  120.     setup_width();
  121.     return code;
  122. }
  123.  
  124. /* awidthshow[_n] */
  125. int
  126. gs_awidthshow_init(register gs_show_enum *penum,
  127.   gs_state *pgs, floatp cx, floatp cy, char chr, floatp ax, floatp ay,
  128.   char *str)
  129. {    int code;
  130.     setup_show();
  131.     code = show_setup(penum, pgs, str);
  132.     setup_a();
  133.     setup_width();
  134.     return code;
  135. }
  136. int
  137. gs_awidthshow_n_init(register gs_show_enum *penum,
  138.   gs_state *pgs, floatp cx, floatp cy, char chr, floatp ax, floatp ay,
  139.   char *str, uint size)
  140. {    int code;
  141.     setup_show_n();
  142.     code = show_setup(penum, pgs, str);
  143.     setup_a();
  144.     setup_width();
  145.     return code;
  146. }
  147.  
  148. /* kshow[_n] */
  149. int
  150. gs_kshow_init(register gs_show_enum *penum,
  151.   gs_state *pgs, char *str)
  152. {    int code;
  153.     if ( pgs->font->FontType == ft_composite)
  154.         return_error(gs_error_invalidfont);
  155.     setup_show();
  156.     code = show_setup(penum, pgs, str);
  157.     penum->do_kern = penum->slow_show = 1;
  158.     return code;
  159. }
  160. int
  161. gs_kshow_n_init(register gs_show_enum *penum,
  162.   gs_state *pgs, char *str, uint size)
  163. {    int code;
  164.     if ( pgs->font->FontType == ft_composite)
  165.         return_error(gs_error_invalidfont);
  166.     setup_show_n();
  167.     code = show_setup(penum, pgs, str);
  168.     penum->do_kern = penum->slow_show = 1;
  169.     return code;
  170. }
  171.  
  172. /* ------ Related operators ------ */
  173.  
  174. /* stringwidth[_n] */
  175. int
  176. gs_stringwidth_init(gs_show_enum *penum, gs_state *pgs, char *str)
  177. {    setup_show();
  178.     return stringwidth_setup(penum, pgs, str);
  179. }
  180. int
  181. gs_stringwidth_n_init(gs_show_enum *penum, gs_state *pgs, char *str, uint size)
  182. {    setup_show_n();
  183.     return stringwidth_setup(penum, pgs, str);
  184. }
  185.  
  186. /* Common code for stringwidth[_n] */
  187. private int
  188. stringwidth_setup(gs_show_enum *penum, gs_state *pgs, char *str)
  189. {    int code = show_setup(penum, pgs, str);
  190.     if ( code < 0 ) return_error(code);
  191.     penum->stringwidth_flag = 1;
  192.     /* Do an extra gsave and suppress output */
  193.     if ( (code = gs_gsave(pgs)) < 0 ) return code;
  194.     penum->level = pgs->level;    /* for level check in show_update */
  195.     gx_device_no_output(pgs);
  196.     /* Establish an arbitrary current point. */
  197.     return gx_path_add_point(pgs->path, pgs->ctm.tx_fixed, pgs->ctm.ty_fixed);
  198. }
  199.  
  200. /* charpath[_n] */
  201. int
  202. gs_charpath_init(gs_show_enum *penum, gs_state *pgs,
  203.   char *str, int bool)
  204. {    int code;
  205.     setup_show();
  206.     code = show_setup(penum, pgs, str);
  207.     penum->charpath_flag = (bool ? 2 : 1);
  208.     penum->can_cache = 0;
  209.     return code;
  210. }
  211. int
  212. gs_charpath_n_init(gs_show_enum *penum, gs_state *pgs,
  213.   char *str, uint size, int bool)
  214. {    int code;
  215.     setup_show_n();
  216.     code = show_setup(penum, pgs, str);
  217.     penum->charpath_flag = (bool ? 2 : 1);
  218.     penum->can_cache = 0;
  219.     return code;
  220. }
  221.  
  222. /* ------ Width/cache operators ------ */
  223.  
  224. /* setcachedevice */
  225. int
  226. gs_setcachedevice(register gs_show_enum *penum, gs_state *pgs,
  227.   floatp wx, floatp wy, floatp llx, floatp lly, floatp urx, floatp ury)
  228. {    int code = gs_setcharwidth(penum, pgs, wx, wy);    /* default is don't cache */
  229.     if ( code < 0 ) return code;
  230.     /* See if we want to cache this character. */
  231.     if ( pgs->in_cachedevice )        /* no recursion! */
  232.         return 0;
  233.     pgs->in_cachedevice = 1;    /* disable color/gray/image operators */
  234.     /* We can only use the cache if ctm is unchanged */
  235.     /* (aside from a possible translation), */
  236.     /* and if the extent of the box is non-negative. */
  237.     if ( !penum->can_cache || !pgs->char_tm_valid ||
  238.          llx > urx || lly > ury
  239.        )
  240.         return 0;
  241.        {    gs_font_dir *dir = pgs->font->dir;
  242.         gs_fixed_point cbox_ll, cbox_ur, cdim;
  243.         long iwidth, iheight;
  244.         cached_char *cc;
  245.         gs_distance_transform2fixed(&pgs->ctm, llx, lly, &cbox_ll);
  246.         gs_distance_transform2fixed(&pgs->ctm, urx, ury, &cbox_ur);
  247.         cdim.x = cbox_ur.x - cbox_ll.x;
  248.         cdim.y = cbox_ur.y - cbox_ll.y;
  249.         if ( cdim.x < 0 ) cdim.x = -cdim.x;
  250.         if ( cdim.y < 0 ) cdim.y = -cdim.y;
  251. #ifdef DEBUG
  252. if ( gs_debug['k'] )
  253.    {    dprintf4("[k]cbox=[%g %g %g %g]\n",
  254.          fixed2float(cbox_ll.x), fixed2float(cbox_ll.y),
  255.          fixed2float(cbox_ur.x), fixed2float(cbox_ur.y));
  256.     print_ctm("  ", pgs);
  257.    }
  258. #endif
  259.         iwidth = fixed2long(cdim.x) + 2;
  260.         iheight = fixed2long(cdim.y) + 2;
  261.         if (    iwidth != (ushort)iwidth ||
  262.             iheight != (ushort)iheight
  263.            )
  264.           return 0;        /* much too big */
  265.         if ( !penum->dev_cache_set )
  266.            {    /* Set up the memory device for the character cache */
  267.             device *dev = &penum->dev_cache_dev;
  268.             penum->dev_cache_info = mem_mono_device;
  269.             dev->info = (gx_device *)&penum->dev_cache_info;
  270.             dev->is_band_device = 0;
  271.             dev->white = 1;
  272.             dev->black = 1;
  273.             penum->dev_cache_set = 1;
  274.            }
  275.         if ( (cc = gx_alloc_char_bits(dir,
  276.                     (gx_device_memory *)&penum->dev_cache_info,
  277.                     (ushort)iwidth,
  278.                     (ushort)iheight)) == 0 )
  279.           return 0;        /* too big for cache */
  280.         /* The mins handle transposed coordinate systems.... */
  281.         /* Round the offsets to avoid artifacts later. */
  282.         cc->offset.x = fixed_rounded(-min(cbox_ll.x, cbox_ur.x));
  283.         cc->offset.y = fixed_rounded(-min(cbox_ll.y, cbox_ur.y));
  284. #ifdef DEBUG
  285. if ( gs_debug['k'] )
  286.         dprintf2("[k]offset=[%g %g]\n", fixed2float(cc->offset.x),
  287.              fixed2float(cc->offset.y));
  288. #endif
  289.         if ( !color_is_pure(pgs->dev_color) )    /* can't use cache */
  290.            {    gx_unalloc_cached_char(dir, cc);
  291.             return code;
  292.            }
  293.         if ( (code = gs_gsave(pgs)) < 0 )
  294.            {    gx_unalloc_cached_char(dir, cc);
  295.             return code;
  296.            }
  297.         /* Nothing can go wrong now.... */
  298.         penum->cc = cc;
  299.         cc->code = gs_show_current_char(penum);
  300.         cc->wxy = penum->wxy;
  301.         /* Install the device */
  302.         pgs->device = &penum->dev_cache_dev;
  303.         pgs->device_is_shared = 1;    /* don't deallocate */
  304.         /* Adjust the translation in the graphics context */
  305.         /* so that the character lines up with the cache. */
  306.         gs_translate_to_fixed(pgs, cc->offset.x, cc->offset.y);
  307.         /* Reset the clipping path to match the metrics. */
  308.         if ( (code = gx_clip_to_rectangle(pgs, (fixed)0, (fixed)0, int2fixed(iwidth), int2fixed(iheight))) < 0 )
  309.           return code;
  310.         /* Set the color to black. */
  311.         pgs->in_cachedevice = 0;
  312.         gs_setgray(pgs, 0.0);
  313.         pgs->in_cachedevice = 1;
  314.        }
  315.     penum->width_set = sws_cache;
  316.     return 0;
  317. }
  318.  
  319. /* setcharwidth */
  320. int
  321. gs_setcharwidth(register gs_show_enum *penum, gs_state *pgs, floatp wx, floatp wy)
  322. {    if ( penum->width_set != sws_none )
  323.         return_error(gs_error_undefined);
  324.     gs_distance_transform2fixed(&pgs->ctm, wx, wy, &penum->wxy);
  325.     penum->width_set = sws_no_cache;
  326.     return 0;
  327. }
  328.  
  329. /* ------ Enumerator ------ */
  330.  
  331. /* Do the next step of a show (or stringwidth) operation */
  332. int
  333. gs_show_next(gs_show_enum *penum)
  334. {    return (*penum->continue_proc)(penum);
  335. }
  336.  
  337. /* Continuation procedures */
  338. #define show_fast_move(wxy, pgs)\
  339.   gx_path_add_relative_point_inline(pgs->path, wxy.x, wxy.y)
  340. private int show_update(P1(register gs_show_enum *penum));
  341. private int show_move(P1(register gs_show_enum *penum));
  342. private int show_proceed(P1(register gs_show_enum *penum));
  343. private int show_finish(P1(register gs_show_enum *penum));
  344. private int
  345. continue_show_update(register gs_show_enum *penum)
  346. {    int code = show_update(penum);
  347.     if ( code < 0 ) return code;
  348.     code = show_move(penum);
  349.     if ( code != 0 ) return code;
  350.     return show_proceed(penum);
  351. }
  352. private int
  353. continue_show(register gs_show_enum *penum)
  354. {    return show_proceed(penum);
  355. }
  356.  
  357. /* Update position */
  358. private int
  359. show_update(register gs_show_enum *penum)
  360. {    register gs_state *pgs = penum->pgs;
  361.     /* Update position for last character */
  362.     switch ( penum->width_set )
  363.        {
  364.     case sws_none:
  365.         return_error(gs_error_invalidfont);    /* WRONG */
  366.     case sws_cache:
  367.        {    /* Finish installing the cache entry. */
  368.         cached_char *cc = penum->cc;
  369.         int code;
  370.         /* If the BuildChar procedure did a save and a restore, */
  371.         /* it already undid the gsave in setcachedevice. */
  372.         /* We have to check for this by comparing levels. */
  373.         switch ( pgs->level - penum->level )
  374.            {
  375.         default:
  376.             return_error(gs_error_invalidfont);    /* WRONG */
  377.         case 2:
  378.             code = gs_grestore(pgs);
  379.             if ( code < 0 ) return code;
  380.         case 1:
  381.             ;
  382.            }
  383.         gx_add_cached_char(pgs->font->dir, &penum->dev_cache_info,
  384.                    cc, gx_lookup_fm_pair(pgs));
  385.         if ( !penum->stringwidth_flag && !penum->charpath_flag )
  386.           { /* Copy the bits to the real output device. */
  387.             penum->color_loaded = 0;    /* force gx_color_render */
  388.             code = gs_grestore(pgs);
  389.             if ( code < 0 ) return code;
  390.             return gx_copy_cached_char(penum, cc);
  391.           }
  392.        }
  393.     case sws_no_cache: ;
  394.        }
  395.     return gs_grestore(pgs);
  396. }
  397.  
  398. /* Move to next character */
  399. private int
  400. show_move(register gs_show_enum *penum)
  401. {    register gs_state *pgs = penum->pgs;
  402.     if ( penum->add )
  403.         gs_rmoveto(pgs, penum->ax, penum->ay);
  404.     if ( penum->str[penum->index - 1] == penum->chr )
  405.         gs_rmoveto(pgs, penum->cx, penum->cy);
  406.     /* wxy is in device coordinates */
  407.        {    int code = show_fast_move(penum->wxy, pgs);
  408.         if ( code < 0 ) return code;
  409.        }
  410.     /* Check for kerning, but not on the last character. */
  411.     if ( penum->do_kern && penum->index < penum->size )
  412.        {    penum->continue_proc = continue_show;
  413.         return gs_show_kern;
  414.        }
  415.     return 0;
  416. }
  417. /* Process next character */
  418. private int
  419. show_proceed(register gs_show_enum *penum)
  420. {    register gs_state *pgs = penum->pgs;
  421.     byte *str = penum->str;
  422.     uint index;
  423.     cached_fm_pair *pair = 0;
  424.     byte chr;
  425.     int code;
  426.     penum->color_loaded = 0;
  427. more:    /* Proceed to next character */
  428.     if ( penum->can_cache )
  429.        {    /* Loop with cache */
  430.         if ( pair == 0 )
  431.           pair = gx_lookup_fm_pair(pgs);
  432.         if ( penum->stringwidth_flag )
  433.           while ( (index = penum->index++) != penum->size )
  434.             {    cached_char *cc;
  435.             chr = str[index];
  436.             cc = gx_lookup_cached_char(pgs, pair, chr);
  437.             if ( cc == 0 ) goto no_cache;
  438.             /* Character is in cache. */
  439.             code = show_fast_move(cc->wxy, pgs);
  440.             if ( code ) return code;
  441.             }
  442.         else
  443.           while ( (index = penum->index++) != penum->size )
  444.             {    cached_char *cc;
  445.             chr = str[index];
  446.             cc = gx_lookup_cached_char(pgs, pair, chr);
  447.             if ( cc == 0 ) goto no_cache;
  448.             /* Character is in cache. */
  449.             code = gx_copy_cached_char(penum, cc);
  450.             if ( code < 0 ) return code;
  451.             else if ( code > 0 ) goto no_cache;
  452.             if ( penum->slow_show )
  453.                {    penum->wxy = cc->wxy;
  454.                 code = show_move(penum);
  455.                }
  456.             else
  457.                 code = show_fast_move(cc->wxy, pgs);
  458.             if ( code ) return code;
  459.             }
  460.         /* All done. */
  461.         return show_finish(penum);
  462.        }
  463.     else
  464.        {    /* Can't use cache */
  465.         if ( (index = penum->index++) == penum->size )
  466.           {    /* All done. */
  467.             return show_finish(penum);
  468.           }
  469.         chr = str[index];
  470.        }
  471. no_cache:
  472.     /* Character is not cached, client must render it. */
  473.     if ( (code = gs_gsave(pgs)) < 0 ) return code;
  474.     /* Set the charpath flag in the graphics context if necessary, */
  475.     /* so that fill and stroke will add to the path */
  476.     /* rather than having their usual effect. */
  477.     pgs->in_charpath = penum->charpath_flag;
  478.        {    gs_fixed_point cpt;
  479.         gx_path *ppath = pgs->path;
  480.         if ( (code = gx_path_current_point_inline(ppath, &cpt)) < 0 )
  481.             return code;
  482.         cpt.x -= pgs->ctm.tx_fixed;
  483.         cpt.y -= pgs->ctm.ty_fixed;
  484.         gs_setmatrix(pgs, &pgs->char_tm);
  485.         cpt.x += pgs->ctm.tx_fixed;
  486.         cpt.y += pgs->ctm.ty_fixed;
  487.         if ( !penum->stringwidth_flag )
  488.           { /* Round the translation in the graphics state. */
  489.             /* This helps prevent rounding artifacts later. */
  490.             cpt.x = fixed_rounded(cpt.x);
  491.             cpt.y = fixed_rounded(cpt.y);
  492.           }
  493.         gs_translate_to_fixed(pgs, cpt.x, cpt.y);
  494.         /****** FOLLOWING IS WRONG FOR CHARPATH ******/
  495.         if ( !penum->charpath_flag )
  496.            {    gs_newpath(pgs);
  497.            }
  498.         else
  499.            {    gx_path_add_point(ppath, pgs->ctm.tx_fixed,
  500.                       pgs->ctm.ty_fixed);
  501.            }
  502.        }
  503.     penum->width_set = sws_none;
  504.     penum->continue_proc = continue_show_update;
  505.     /* Try using the build procedure in the font. */
  506.     /* < 0 means error, 0 means success, 1 means failure. */
  507.        {    gs_font *font = pgs->font;
  508.         code = (*font->build_char_proc)(penum, pgs, font, chr, font->build_char_data);
  509.         if ( code < 0 ) return code;
  510.         if ( code == 0 )
  511.            {    code = show_update(penum);
  512.             if ( code < 0 ) return code;
  513.             penum->color_loaded = 0;
  514.             code = show_move(penum);
  515.             if ( code ) return code;
  516.             goto more;
  517.            }
  518.        }
  519.     return gs_show_render;
  520. }
  521.  
  522. /* Finish show or stringwidth */
  523. private int
  524. show_finish(register gs_show_enum *penum)
  525. {    register gs_state *pgs = penum->pgs;
  526.     int code;
  527.     if ( !penum->stringwidth_flag ) return 0;
  528.     /* Save the accumulated width before returning, */
  529.     /* and undo the extra gsave. */
  530.     code = gs_currentpoint(pgs, &penum->width);
  531.     if ( code < 0 ) return code;
  532.     return gs_grestore(pgs);
  533. }
  534.  
  535. /* Return the current character for rendering. */
  536. byte
  537. gs_show_current_char(gs_show_enum *penum)
  538. {    return penum->str[penum->index - 1];
  539. }
  540.  
  541. /* Return the just-displayed character for kerning. */
  542. byte
  543. gs_kshow_previous_char(gs_show_enum *penum)
  544. {    return penum->str[penum->index - 1];
  545. }
  546.  
  547. /* Return the about-to-be-displayed character for kerning. */
  548. byte
  549. gs_kshow_next_char(gs_show_enum *penum)
  550. {    return penum->str[penum->index];
  551. }
  552.  
  553. /* Return the accumulated width for stringwidth. */
  554. void
  555. gs_show_width(gs_show_enum *penum, gs_point *ppt)
  556. {    *ppt = penum->width;
  557. }
  558.  
  559. /* Return the charpath flag. */
  560. int
  561. gs_show_in_charpath(gs_show_enum *penum)
  562. {    return penum->charpath_flag;
  563. }
  564.  
  565. /* ------ Internal routines ------ */
  566.  
  567. /* Initialize a show enumerator */
  568. private int
  569. show_setup(register gs_show_enum *penum, gs_state *pgs, char *str)
  570. {    int code;
  571.     gs_font *pfont = pgs->font;
  572.     penum->pgs = pgs;
  573.     penum->level = pgs->level;
  574.     penum->str = (byte *)str;    /* avoid signed chars */
  575.     penum->chr = no_chr;
  576.     penum->add = 0;
  577.     penum->do_kern = 0;
  578.     penum->charpath_flag = 0;
  579.     penum->stringwidth_flag = 0;
  580.     penum->dev_cache_set = 0;
  581.     penum->index = 0;
  582.     penum->continue_proc = continue_show;
  583.     if ( (penum->is_composite = pfont->FontType == ft_composite) )
  584.        {    gs_font *rfont = pgs->font;
  585.         penum->fstack[0] = rfont;
  586.         penum->fdepth = 0;
  587.         penum->pfont =
  588.           rfont->data.type0_data.FDepVector[rfont->data.type0_data.Encoding[0]];
  589.        }
  590.     if ( !pgs->char_tm_valid )
  591.        {    /* Compute combined transformation */
  592.         gs_make_identity(&pgs->char_tm);    /* make sure type */
  593.                     /* fields are set in char_tm! */
  594.         code = gs_matrix_multiply(&pgs->font->FontMatrix,
  595.                       &ctm_only(pgs), &pgs->char_tm);
  596.         if ( code < 0 ) return code;
  597.         pgs->char_tm_valid = 1;
  598.        }
  599.     if ( penum->can_cache =    /* no skewing or non-rectangular rotation */
  600.         (is_fzero2(pgs->char_tm.xy, pgs->char_tm.yx) ||
  601.          is_fzero2(pgs->char_tm.xx, pgs->char_tm.yy)) )
  602.        {    gs_fixed_rect cbox;
  603.         gx_cpath_box_for_check(pgs->clip_path, &cbox);
  604.         penum->cxmin = fixed2int_var(cbox.p.x);
  605.         penum->cymin = fixed2int_var(cbox.p.y);
  606.         penum->cxmax = fixed2int_var(cbox.q.x);
  607.         penum->cymax = fixed2int_var(cbox.q.y);
  608.         penum->ftx = (int)fixed2long(float2fixed(pgs->char_tm.tx) - pgs->ctm.tx_fixed);
  609.         penum->fty = (int)fixed2long(float2fixed(pgs->char_tm.ty) - pgs->ctm.ty_fixed);
  610.        }
  611.     return 0;
  612. }
  613.